added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / VBAzureWebRoleBackendProcessing / AzureService / ServiceDefinition.csdef
blob9570295ba0bd852cd43bbf5eb4e52105070346a9
1 <?xml version="1.0" encoding="utf-8"?>
2 <ServiceDefinition name="CSAzureWebRoleBackendProcessing" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
3     <WebRole name="WebRole" vmsize="ExtraSmall">
4         <Startup>
5             <Task commandLine="VBAzureWebRoleBackendProcessing.Processor.exe" executionContext="elevated" taskType="background" />
6         </Startup>
7         <Sites>
8             <Site name="Web">
9                 <Bindings>
10                     <Binding name="Endpoint1" endpointName="Endpoint1" />
11                 </Bindings>
12             </Site>
13         </Sites>
14         <Endpoints>
15             <InputEndpoint name="Endpoint1" protocol="http" port="80" />
16         </Endpoints>
17         <ConfigurationSettings>
18             <Setting name="DataConnectionString" />
19         </ConfigurationSettings>
20         <Imports>
21             <Import moduleName="Diagnostics" />
22         </Imports>
23     </WebRole>
24 </ServiceDefinition>